home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / bgft211.zip / BGFTUYQM.SCR < prev    next >
Text File  |  1991-05-02  |  1KB  |  29 lines

  1. ; BGFTUYQM.SCR: Qmodem script for BGFT Ymodem-Batch Upload.
  2. ; Copyright (c) 1991 Dirac Systems.
  3. ; Support Package for Registered users of BGFT (TM) Background File Transfer.
  4. ; Qmodem is a trademark of The Forbin Project Inc.
  5. ;
  6. CLRSCR
  7. DISPLAYLN " "
  8. DISPLAYLN "  Copyright (c) 1991 Dirac Systems     \ /"
  9. DISPLAYLN "------------------------------------- - o -"
  10. DISPLAYLN "                                       / \"
  11. DISPLAYLN "BGFT Ymodem-Batch Upload External Protocol"
  12. DISPLAYLN " "
  13. ASSIGN 0 1                      ; USER DEFINED COMM PORT.
  14. ASSIGN 1 1200                   ; USER DEFINED BAUD RATE (Qmodem $SPEED?).
  15. ASSIGN 2 "BGFTOPT /Q"           ; Quiet mode (don't print out results).
  16. ASSIGN 3 " /A"                  ; Acknowledge error, if any.
  17. ASSIGN 4 " /R"                  ; Reconnect COMM port.
  18. ASSIGN 5 "$2$3$4$0"             ; Concatenate the commands.
  19. ASSIGN 6 " /B"                  ; Set baud rate.
  20. ; Ymodem Batch sends the filename(s) to the remote receiver.
  21. ASSIGN 8 " /~"                  ; Set protocol.
  22. ASSIGN 9 "3"                    ; USER DEFINED PROTOCOL (Ymodem Batch Upload).
  23. ASSIGN 2 " /S"                  ; Start file(s) transfer.
  24. ASSIGN 3 "$5$6$1$8$9$2"         ; DOS command.
  25. DISPLAYLN "$3"                  ; Show the command.
  26. DOS "$3"                        ; Run BGFTOPT.EXE with appropriate command.
  27. SYSTEM X                        ; Exit QMODEM without hanging up.
  28.  
  29.